home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 May (DVD) / Macworld Resource DVD May 2003.toast / Data / Software / Bonus / Database / mysql-max-3.23.55.sit / mysql-max-3.23.55-apple-darwi.1 / mysql-test / t / insert.test < prev    next >
Encoding:
Text File  |  2003-01-21  |  248 b   |  13 lines  |  [TEXT/ttxt]

  1. #
  2. # Test of refering to old values
  3. #
  4.  
  5. drop table if exists t1;
  6. create table t1 (a int not null);
  7. insert into t1 values (1);
  8. insert into t1 values (a+2);
  9. insert into t1 values (a+3);
  10. insert into t1 values (4),(a+5);
  11. select * from t1;
  12. drop table t1;
  13.